projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6664f98
)
* Reduce stack depth while marking native compiled subrs
author
Andrea Corallo
<akrl@sdf.org>
Sat, 29 Feb 2020 11:05:46 +0000
(11:05 +0000)
committer
Andrea Corallo
<akrl@sdf.org>
Sun, 1 Mar 2020 19:22:27 +0000
(19:22 +0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index 354c6f09cc57ff897881bec60cdd7d462a5c2a26..9a01edca3f8ee4b4b13f3c9111ff46af2a47aac5 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-6683,7
+6683,9
@@
mark_object (Lisp_Object arg)
{
set_vector_marked (ptr);
struct Lisp_Subr *subr = XSUBR (obj);
- mark_object (subr->native_comp_u[0]);
+ obj = subr->native_comp_u[0];
+ eassert (obj);
+ goto loop;
}
break;